home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / libol / werror.h < prev    next >
C/C++ Source or Header  |  2005-10-16  |  2KB  |  76 lines

  1. /***************************************************************************
  2.  *
  3.  * Copyright (c) 1998-1999 Niels M÷ller
  4.  * Copyright (c) 1999 BalaBit Computing
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2 of the License, or
  9.  * (at your option) any later version.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software
  18.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  *
  20.  * $Id: werror.h,v 1.4 1999/07/10 13:23:09 bazsi Exp $
  21.  *
  22.  ***************************************************************************/
  23.  
  24. #ifndef __ERROR_H_INCLUDED
  25. #define __ERROR_H_INCLUDED
  26.  
  27. #include "objects.h"
  28. #include <stdarg.h>
  29.  
  30. /* Global variables */
  31. extern int debug_flag;
  32. extern int quiet_flag;
  33. extern int verbose_flag;
  34.  
  35. void set_error_stream(int fd, int with_poll);
  36. void set_error_ignore(void);
  37.  
  38. #ifdef HAVE_SYSLOG
  39. void set_error_syslog(const char *progname);
  40. #endif
  41.  
  42. /* Format specifiers:
  43.  *
  44.  * %%  %-charqacter
  45.  * %i  UINT32
  46.  * %c  int, interpreted as a single character to output
  47.  * %z  NUL-terminated string
  48.  * %s  UINT32 length, UINT8 *data
  49.  * %S  lsh_string *s
  50.  *
  51.  * Modifiers:
  52.  *
  53.  * x  hexadecimal output
  54.  * f  Consume (and free) the input string
  55.  * p  Filter out dangerous control characters
  56.  */
  57.  
  58. /* message levels */
  59.  
  60. #define MSG_DEBUG           0
  61. #define MSG_VERBOSE         1
  62. #define MSG_NOTICE          2
  63. #define MSG_ERROR          3
  64. #define MSG_FATAL           4
  65.  
  66. extern int (*error_write)(int level, UINT32 length, UINT8 *data);
  67.  
  68. void notice(const char *format, ...);
  69. void werror(const char *format, ...);
  70. void debug(const char *format, ...);
  71. void verbose(const char *format, ...);
  72.  
  73. void fatal(const char *format, ...) NORETURN;
  74.  
  75. #endif 
  76.